home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 October: Mac OS SDK / Dev.CD Oct 97 SDK1.toast / Development Kits (Disc 1) / Interfaces&Libraries / Universal / Interfaces / RIncludes / Collections.r < prev    next >
Encoding:
Text File  |  1997-08-12  |  1.1 KB  |  46 lines  |  [TEXT/MPS ]

  1. /*
  2.      File:        Collections.r
  3.  
  4.      Contains:    Collection Manager Interfaces
  5.  
  6.      Version:    Technology:    System 7.x
  7.                  Release:    Universal Interfaces 3.0.1
  8.  
  9.      Copyright:    © 1989-1997 by Apple Computer, Inc., all rights reserved
  10.  
  11.      Bugs?:        Please include the the file and version information (from above) with
  12.                  the problem description.  Developers belonging to one of the Apple
  13.                  developer programs can submit bug reports to:
  14.  
  15.                      devsupport@apple.com
  16.  
  17. */
  18.  
  19. #ifndef __COLLECTIONS_R__
  20. #define __COLLECTIONS_R__
  21.  
  22. #ifndef __CONDITIONALMACROS_R__
  23. #include "ConditionalMacros.r"
  24. #endif
  25.  
  26. // 'cltn' - definition of a collection resource
  27. type 'cltn' {
  28.     longint = $$CountOf(ItemArray);
  29.     array ItemArray
  30.         {
  31.         longint;    // tag
  32.         longint;    // id
  33.             boolean        itemUnlocked            =    false,    // defined attributes bits...
  34.                         itemLocked                =    true;
  35.             boolean        itemNonPersistent        =    false,
  36.                         itemPersistent            =    true;
  37.             unsigned bitstring[14] = 0;                        // reserved attributes bits...
  38.             unsigned bitstring[16];                            // user attributes bits...
  39.         wstring;
  40.         align word;
  41.     };
  42. };
  43.  
  44. #endif /* __COLLECTIONS_R__ */
  45.  
  46.